home *** CD-ROM | disk | FTP | other *** search
/ Aminet 6 / Aminet 6 - June 1995.iso / Aminet / gfx / 3d / irit50src.lha / irit5 / trim_lib / makefile.wnt < prev    next >
Encoding:
Makefile  |  1994-12-19  |  650 b   |  28 lines

  1. #
  2. # This is the make file for the trim_lib library.
  3. #
  4. #                Gershon Elber, June 1993
  5. #
  6.  
  7. # Get the destination directories:
  8. include ..\makeflag.wnt
  9.  
  10. OBJS =  iso_crvs.obj trim_aux.obj trim_dbg.obj trim_err.obj \
  11.     trim_ftl.obj trim_gen.obj 
  12.  
  13. trim_lib.lib: $(OBJS)
  14.     -del trim_lib.lib
  15.     $(IRITLIB) -out:trim_lib.lib *.obj
  16.  
  17. install: trim_lib.lib
  18.     copy trim_lib.lib $(LIB_DIR)
  19.     -del trim_lib.lib
  20.  
  21. # Dependencies starts here - do not touch, generated automatically.
  22. iso_crvs.obj:    trim_loc.h ../include/symb_lib.h
  23. trim_aux.obj:    trim_loc.h
  24. trim_dbg.obj:    trim_loc.h ../include/iritprsr.h
  25. trim_err.obj:    trim_loc.h
  26. trim_ftl.obj:    trim_loc.h
  27. trim_gen.obj:    trim_loc.h
  28.